home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET
/
BCI NET Dec 94.iso
/
archives
/
applications
/
wp
/
xdmd1.lha
/
Mode.xdme
< prev
next >
Wrap
Text File
|
1994-10-29
|
426b
|
17 lines
/* mode.xdme */
/* Selects the appropriate mode according to the file name */
arg name
dot = lastpos(".", name)
if dot ~= 0 then ext = substr(name, dot)
select
when index(name,":S/") > 0 | left(name,2) = "S:" then "prog-mode"
when dot = 0 | ext = ".TXT" | ext = ".DOC" | ext = ".GUIDE" | ext = ".README" | ext = "DOK" then "text-mode"
when ext = ".C" | ext = ".CC" then "c-mode"
otherwise "prog-mode"
end